body.footer-page {
  background: #1f1f1f;
  overflow-x: hidden;
}


/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: #1f1f1f;
  color: #ffffff;
  padding: 64px 55px 48px;
}

.footer-inner {
  max-width: 1420px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  color: #ffffff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(190, 138, 45, 0.45);
}

.footer-brand span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-brand-button {
  width: fit-content;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.logo:focus-visible,
.footer-brand-button:focus-visible {
  outline: 3px solid #d0a24a;
  outline-offset: 8px;
}

.footer-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 50%;
  padding: 5px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 36px;
  margin-bottom: 72px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.footer-column h3 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a::after,
.footer-legal a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 2px;
  background: #be8a2d;
  transition: width 0.2s ease;
}

.footer-column a:hover::after,
.footer-legal a:hover::after {
  width: 100%;
}

.footer-column a:hover,
.footer-legal a:hover,
.footer-social a:hover {
  color: #be8a2d;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  margin-bottom: 64px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a:nth-child(1) svg path,
.footer-social a:nth-child(4) svg path {
  fill: currentColor;
  stroke: none;
}

.footer-social a:hover {
  border-color: #be8a2d;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.footer-bottom p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 48px 30px 38px;
  }

  .footer-brand {
    font-size: 30px;
  }

  .footer-logo {
    width: 68px;
    height: 68px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 32px 24px;
    margin-bottom: 36px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-bottom: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom p {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 40px 18px 34px;
  }

  .footer-brand {
    gap: 12px;
    font-size: 24px;
  }

  .footer-logo {
    width: 56px;
    height: 56px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 28px;
  }

  .footer-social {
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
  }
}

